6eadd01117d79e9a940b5291c701f989e84fb81d,modules/utils/src/main/java/org/springside/modules/utils/reflect/FastMethodInvoker.java,FastMethodInvoker,invoke,#Object#Object#,84

Before Change


		try {
			return (T) fastMethod.invoke(obj, args);
		} catch (Exception e) {
			throw ExceptionUtil.unchecked(ExceptionUtil.unwrap(e));
		}
	}
}

After Change


		try {
			return (T) fastMethod.invoke(obj, args);
		} catch (Exception e) {
			throw ExceptionUtil.uncheckedAndWrap(e);
		}
	}
}